home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / etc / skel / Mac4Lin_v1.0 / Mozilla / Thunderbird / awn-notif-0.2-tb-linux.xpi / content / overlay.js < prev    next >
Encoding:
JavaScript  |  2007-05-28  |  5.8 KB  |  143 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  *   Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  * 
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Awn-notif.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Thesa aka Florian Bir√©e
  18.  * Portions created by the Initial Developer are Copyright (C) 2007
  19.  * the Initial Developer. All Rights Reserved.
  20.  * 
  21.  * Portions of code are from the Thunderled extension.
  22.  * The Initial Developer of Thunderled is
  23.  * leo1981 (Leonardo Prosperi).
  24.  * Portions created by Leonardo Prosperi are Copyright (C) 2007
  25.  * Leonardo Prosperi. All Rights Reserved.
  26.  *
  27.  * Contributor(s):
  28.  *
  29.  * Alternatively, the contents of this file may be used under the terms of
  30.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  31.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  32.  * in which case the provisions of the GPL or the LGPL are applicable instead
  33.  * of those above. If you wish to allow use of your version of this file only
  34.  * under the terms of either the GPL or the LGPL, and not to allow others to
  35.  * use your version of this file under the terms of the MPL, indicate your
  36.  * decision by deleting the provisions above and replace them with the notice
  37.  * and other provisions required by the GPL or the LGPL. If you do not delete
  38.  * the provisions above, a recipient may use your version of this file under
  39.  * the terms of any one of the MPL, the GPL or the LGPL.
  40.  * 
  41.  * ***** END LICENSE BLOCK ***** */
  42.  
  43. var strings;
  44. var noReading;
  45. var error;
  46. var manyMails;
  47. var oneMail;
  48. var inbox;
  49.  
  50. var AwnNotif = {
  51.     consoleService: Components.classes["@mozilla.org/consoleservice;1"].getService(Components.interfaces.nsIConsoleService),
  52.     
  53.     onLoad: function() {
  54.         this.initialized = true;
  55.         strings = document.getElementById("awn-notif-strings");
  56.         noReading = strings.getString('noReading');
  57.         error = strings.getString('error');
  58.         manyMails = strings.getString('manyMails');
  59.         oneMail = strings.getString('oneMail')
  60.         inbox = strings.getString('inbox');
  61.     },
  62.     
  63.     onClose: function() {
  64.         this.initialized = true;
  65.         AwnNotif.number(0);
  66.     },
  67.     
  68.     number: function(x){
  69.         try {
  70.             netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
  71.         } catch (e) {
  72.             alert(noReading);
  73.         }
  74.         var file = Components.classes["@mozilla.org/file/local;1"]
  75.             .createInstance(Components.interfaces.nsILocalFile);
  76.         
  77.         const DIR_SERVICE = new 
  78.             Components.Constructor("@mozilla.org/file/directory_service;1","nsIProperties");
  79.         try { 
  80.             path=(new DIR_SERVICE()).get("ProfD", Components.interfaces.nsIFile).path; 
  81.         } catch (e) {
  82.             alert(error);
  83.         }
  84.         path = path + "/extensions/{761e13a8-9891-ef56-a4ee-988fa1bd8bbd}/content/awn-notif.py";
  85.         file.initWithPath(path);
  86.         if (x == 1){
  87.             var args = [x, oneMail];
  88.         } else {
  89.             var args = [x, manyMails];
  90.         }
  91.         var process = Components.classes["@mozilla.org/process/util;1"].createInstance(Components.interfaces.nsIProcess);
  92.         process.init(file);
  93.         process.run(false, args, args.length);
  94.     },
  95.     
  96.     folderListener: { 
  97.         OnItemAdded: function(parentItem, item, view){
  98.             try {
  99.                 var mitem = item.QueryInterface(Components.interfaces.nsIMsgDBHdr);
  100.             }
  101.             catch(e) {return;}
  102.             var folder = mitem.folder;
  103.             while(folder.prettyName!=inbox && folder.rootFolder!=folder.parentMsgFolder){folder=folder.parentMsgFolder;}
  104.             AwnNotif.number(folder.getNumUnread(true) + 1);
  105.         },
  106.         OnItemRemoved: function(parentItem, item, view){
  107.         },
  108.         OnItemPropertyChanged: function(item, property, oldValue, newValue) {
  109.         },
  110.         OnItemIntPropertyChanged: function(item, property, oldValue, newValue) {
  111.         },
  112.         OnItemBoolPropertyChanged: function(item, property, oldValue, newValue) {
  113.         },
  114.         OnItemUnicharPropertyChanged: function(item, property, oldValue, newValue){
  115.         },
  116.         OnItemPropertyFlagChanged: function(item, property, oldFlag, newFlag) {
  117.             var folder = item.folder;
  118.             while(folder.prettyName!=inbox && folder.rootFolder!=folder.parentMsgFolder){folder=folder.parentMsgFolder;}
  119.             if (property=="Status"){
  120.                 if (!item.isRead){
  121.                     AwnNotif.number(folder.getNumUnread(true) + 1);
  122.                 } else {
  123.                     AwnNotif.number(folder.getNumUnread(true) - 1);
  124.                 }
  125.             }
  126.  
  127.         },
  128.         OnItemEvent: function(folder, event){
  129.             while(folder.prettyName!=inbox && folder.rootFolder!=folder.parentMsgFolder){folder=folder.parentMsgFolder;}
  130.             AwnNotif.number(folder.getNumUnread(true));
  131.         }
  132.     },
  133.     
  134.     mailSession: '',
  135.     notifyFlags: ''
  136. };
  137.  
  138. window.addEventListener("load", function(e) { AwnNotif.onLoad(e); }, false);
  139. window.addEventListener("close", function(e) { AwnNotif.onClose(e); }, false); 
  140.  
  141. AwnNotif.mailSession = Components.classes["@mozilla.org/messenger/services/session;1"].getService(Components.interfaces.nsIMsgMailSession);
  142. AwnNotif.notifyFlags = Components.interfaces.nsIFolderListener.all;
  143. AwnNotif.mailSession.AddFolderListener(AwnNotif.folderListener, AwnNotif.notifyFlags);
  144.